home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / TRCKR.PAK / DIALOGS.CPP next >
C/C++ Source or Header  |  1997-05-06  |  2KB  |  83 lines

  1. // dialogs.cpp : implementation file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13.  
  14. #include "stdafx.h"
  15. #include "trackapp.h"
  16. #include "dialogs.h"
  17.  
  18. #ifdef _DEBUG
  19. #undef THIS_FILE
  20. static char BASED_CODE THIS_FILE[] = __FILE__;
  21. #endif
  22.  
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CHandleSize dialog
  25.  
  26.  
  27. CHandleSize::CHandleSize(CWnd* pParent /*=NULL*/)
  28.     : CDialog(CHandleSize::IDD, pParent)
  29. {
  30.     //{{AFX_DATA_INIT(CHandleSize)
  31.     m_nHandleSize = 0;
  32.     //}}AFX_DATA_INIT
  33. }
  34.  
  35. void CHandleSize::DoDataExchange(CDataExchange* pDX)
  36. {
  37.     CDialog::DoDataExchange(pDX);
  38.     //{{AFX_DATA_MAP(CHandleSize)
  39.     DDX_Text(pDX, IDC_EDIT1, m_nHandleSize);
  40.     //}}AFX_DATA_MAP
  41. }
  42.  
  43. BEGIN_MESSAGE_MAP(CHandleSize, CDialog)
  44.     //{{AFX_MSG_MAP(CHandleSize)
  45.         // NOTE: the ClassWizard will add message map macros here
  46.     //}}AFX_MSG_MAP
  47. END_MESSAGE_MAP()
  48.  
  49.  
  50. /////////////////////////////////////////////////////////////////////////////
  51. // CHandleSize message handlers
  52. /////////////////////////////////////////////////////////////////////////////
  53. // CMinSize dialog
  54.  
  55.  
  56. CMinSize::CMinSize(CWnd* pParent /*=NULL*/)
  57.     : CDialog(CMinSize::IDD, pParent)
  58. {
  59.     //{{AFX_DATA_INIT(CMinSize)
  60.     m_nMinX = 0;
  61.     m_nMinY = 0;
  62.     //}}AFX_DATA_INIT
  63. }
  64.  
  65. void CMinSize::DoDataExchange(CDataExchange* pDX)
  66. {
  67.     CDialog::DoDataExchange(pDX);
  68.     //{{AFX_DATA_MAP(CMinSize)
  69.     DDX_Text(pDX, IDC_EDIT1, m_nMinX);
  70.     DDX_Text(pDX, IDC_EDIT2, m_nMinY);
  71.     //}}AFX_DATA_MAP
  72. }
  73.  
  74. BEGIN_MESSAGE_MAP(CMinSize, CDialog)
  75.     //{{AFX_MSG_MAP(CMinSize)
  76.         // NOTE: the ClassWizard will add message map macros here
  77.     //}}AFX_MSG_MAP
  78. END_MESSAGE_MAP()
  79.  
  80.  
  81. /////////////////////////////////////////////////////////////////////////////
  82. // CMinSize message handlers
  83.